home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xrefresh / xrefresh.c < prev    next >
Text File  |  1994-08-12  |  10KB  |  346 lines

  1. /***********************************************************
  2. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /*
  26.  * $XConsortium: xrefresh.c,v 1.13 90/12/13 08:26:33 rws Exp $
  27.  *
  28.  * Kitchen sink version, useful for clearing small areas and flashing the 
  29.  * screen.
  30.  */
  31.  
  32. #include <stdio.h>
  33. #include <errno.h>
  34. #include <X11/Xos.h>
  35. #include <X11/Xlib.h>
  36. #include <X11/Xutil.h>
  37. #include <ctype.h>
  38.  
  39. char *malloc();
  40.  
  41. Window win;
  42.  
  43. char *ProgramName;
  44.  
  45. void Syntax ()
  46. {
  47.     fprintf (stderr, "usage:  %s [-options] [geometry] [display]\n\n", 
  48.              ProgramName);
  49.     fprintf (stderr, "where the available options are:\n");
  50.     fprintf (stderr, "    -display host:dpy       or -d\n");
  51.     fprintf (stderr, "    -geometry WxH+X+Y       or -g spec\n");
  52.     fprintf (stderr, "    -black                  use BlackPixel\n");
  53.     fprintf (stderr, "    -white                  use WhitePixel\n");
  54.     fprintf (stderr, "    -solid colorname        use the color indicated\n");
  55.     fprintf (stderr, "    -root                   use the root background\n");
  56.     fprintf (stderr, "    -none                   no background in window\n");
  57.     fprintf (stderr, "\nThe default is:  %s -none\n\n", ProgramName);
  58.     exit (1);
  59. }
  60.  
  61. static char *copystring (s)
  62.     register char *s;
  63. {
  64.     int len = (s ? strlen (s) : 0) + 1;
  65. #ifndef MSDOS
  66.     char *malloc();
  67. #endif
  68.     char *retval;
  69.  
  70.     retval = malloc (len);
  71.     if (!retval) {
  72.     fprintf (stderr, "%s:  unable to allocate %d bytes for string.\n",
  73.          ProgramName, len);
  74.     exit (1);
  75.     }
  76.     (void) strcpy (retval, s);
  77.     return (retval);
  78. }
  79.  
  80. /*
  81.  * The following parses options that should be yes or no; it returns -1, 0, 1
  82.  * for error, no, yes.
  83.  */
  84.  
  85. static int parse_boolean_option (option)
  86.     register char *option;
  87. {
  88.     static struct _booltable {
  89.         char *name;
  90.         int value;
  91.     } booltable[] = {
  92.         { "off", 0 }, { "n", 0 }, { "no", 0 }, { "false", 0 },
  93.         { "on", 1 }, { "y", 1 }, { "yes", 1 }, { "true", 1 },
  94.         { NULL, -1 }};
  95.     register struct _booltable *t;
  96.     register char *cp;
  97.  
  98.     for (cp = option; *cp; cp++) {
  99.         if (isascii (*cp) && isupper (*cp)) *cp = tolower (*cp);
  100.     }
  101.  
  102.     for (t = booltable; t->name; t++) {
  103.         if (strcmp (option, t->name) == 0) return (t->value);
  104.     }
  105.     return (-1);
  106. }
  107.  
  108.  
  109. /*
  110.  * The following is a hack until XrmParseCommand is ready.  It determines
  111.  * whether or not the given string is an abbreviation of the arg.
  112.  */
  113.  
  114. static Bool isabbreviation (arg, s, minslen)
  115.     char *arg;
  116.     char *s;
  117.     int minslen;
  118. {
  119.     int arglen;
  120.     int slen;
  121.  
  122.     /* exact match */
  123.     if (strcmp (arg, s) == 0) return (True);
  124.  
  125.     arglen = strlen (arg);
  126.     slen = strlen (s);
  127.  
  128.     /* too long or too short */
  129.     if (slen >= arglen || slen < minslen) return (False);
  130.  
  131.     /* abbreviation */
  132.     if (strncmp (arg, s, slen) == 0) return (True);
  133.  
  134.     /* bad */
  135.     return (False);
  136. }
  137.  
  138.  
  139. enum e_action {doDefault, doBlack, doWhite, doSolid, doNone, doRoot};
  140.  
  141. struct s_pair {
  142.     char *resource_name;
  143.     enum e_action action;
  144. } pair_table[] = {
  145.     { "Black", doBlack },
  146.     { "White", doWhite },
  147.     { "None", doNone },
  148.     { "Root", doRoot },
  149.     { NULL, doDefault }};
  150.  
  151.  
  152. main(argc, argv)
  153. int    argc;
  154. char    *argv[];
  155. {
  156.     Visual visual;
  157.     XSetWindowAttributes xswa;
  158.     int i;
  159.     char *displayname = NULL;
  160.     Display *dpy;
  161.     Colormap cmap;
  162.     enum e_action action = doDefault;
  163.     unsigned long mask;
  164.     int screen;
  165.     int x, y, width, height;
  166.     char *geom = NULL;
  167.     int geom_result;
  168.     int display_width, display_height;
  169.     char *solidcolor = NULL;
  170.     XColor cdef;
  171.  
  172.     ProgramName = argv[0];
  173.  
  174.     for (i = 1; i < argc; i++) {
  175.     char *arg = argv[i];
  176.  
  177.     if (arg[0] == '-') {
  178.         if (isabbreviation ("-display", arg, 2)) {
  179.         if (++i >= argc) Syntax ();
  180.         displayname = argv[i];
  181.         continue;
  182.         } else if (isabbreviation ("-geometry", arg, 2)) {
  183.         if (++i >= argc) Syntax ();
  184.         geom = argv[i];
  185.         continue;
  186.         } else if (isabbreviation ("-black", arg, 2)) {
  187.         action = doBlack;
  188.         continue;
  189.         } else if (isabbreviation ("-white", arg, 2)) {
  190.         action = doWhite;
  191.         continue;
  192.         } else if (isabbreviation ("-solid", arg, 2)) {
  193.         if (++i >= argc) Syntax ();
  194.         solidcolor = argv[i];
  195.         action = doSolid;
  196.         continue;
  197.         } else if (isabbreviation ("-none", arg, 2)) {
  198.         action = doNone;
  199.         continue;
  200.         } else if (isabbreviation ("-root", arg, 2)) {
  201.         action = doRoot;
  202.         continue;
  203.         } else 
  204.         Syntax ();
  205.     } else if (arg[0] == '=')            /* obsolete */
  206.         geom = arg;
  207.     else 
  208.         Syntax ();
  209.     }
  210.  
  211.     if ((dpy = XOpenDisplay(displayname)) == NULL) {
  212.     fprintf (stderr, "%s:  unable to open display '%s'\n",
  213.          ProgramName, XDisplayName (displayname));
  214.     exit (1);
  215.     }
  216.  
  217.     if (action == doDefault) {
  218.     char *def;
  219.  
  220.     if ((def = XGetDefault (dpy, ProgramName, "Solid")) != NULL) {
  221.         solidcolor = copystring (def);
  222.         action = doSolid;
  223.     } else {
  224.         struct s_pair *pp;
  225.  
  226.         for (pp = pair_table; pp->resource_name != NULL; pp++) {
  227.         def = XGetDefault (dpy, ProgramName, pp->resource_name);
  228.         if (def && parse_boolean_option (def) == 1) {
  229.             action = pp->action;
  230.         }
  231.         }
  232.     }
  233.     }
  234.  
  235.     if (geom == NULL) geom = XGetDefault (dpy, ProgramName, "Geometry");
  236.  
  237.     screen = DefaultScreen (dpy);
  238.     display_width = DisplayWidth (dpy, screen);
  239.     display_height = DisplayHeight (dpy, screen);
  240.     x = y = 0; 
  241.     width = display_width;
  242.     height = display_height;
  243.  
  244.     if (DisplayCells (dpy, screen) <= 2 && action == doSolid) {
  245.     if (strcmp (solidcolor, "black") == 0)
  246.         action = doBlack;
  247.     else if (strcmp (solidcolor, "white") == 0) 
  248.         action = doWhite;
  249.     else {
  250.         fprintf (stderr, 
  251.                  "%s:  can't use colors on a monochrome display.\n",
  252.              ProgramName);
  253.         action = doNone;
  254.     }
  255.     }
  256.  
  257.     if (geom) 
  258.         geom_result = XParseGeometry (geom, &x, &y,
  259.                       (unsigned int *)&width,
  260.                       (unsigned int *)&height);
  261.     else
  262.     geom_result = NoValue;
  263.  
  264.     /*
  265.      * For parsing geometry, we want to have the following
  266.      *     
  267.      *     =                (0,0) for (display_width,display_height)
  268.      *     =WxH+X+Y         (X,Y) for (W,H)
  269.      *     =WxH-X-Y         (display_width-W-X,display_height-H-Y) for (W,H)
  270.      *     =+X+Y            (X,Y) for (display_width-X,display_height-Y)
  271.      *     =WxH             (0,0) for (W,H)
  272.      *     =-X-Y            (0,0) for (display_width-X,display_height-Y)
  273.      *
  274.      * If we let any missing values be taken from (0,0) for 
  275.      * (display_width,display_height) we just have to deal with the
  276.      * negative offsets.
  277.      */
  278.  
  279.     if (geom_result & XNegative) {
  280.     if (geom_result & WidthValue) {
  281.         x = display_width - width + x;
  282.     } else {
  283.         width = display_width + x;
  284.         x = 0;
  285.     }
  286.     } 
  287.     if (geom_result & YNegative) {
  288.     if (geom_result & HeightValue) {
  289.         y = display_height - height + y;
  290.     } else {
  291.         height = display_height + y;
  292.         y = 0;
  293.     }
  294.     }
  295.  
  296.     mask = 0;
  297.     switch (action) {
  298.     case doBlack:
  299.         xswa.background_pixel = BlackPixel (dpy, screen);
  300.         mask |= CWBackPixel;
  301.         break;
  302.     case doWhite:
  303.         xswa.background_pixel = WhitePixel (dpy, screen);
  304.         mask |= CWBackPixel;
  305.         break;
  306.     case doSolid:
  307.         cmap = DefaultColormap (dpy, screen);
  308.         if (XParseColor (dpy, cmap, solidcolor, &cdef) &&
  309.         XAllocColor (dpy, cmap, &cdef)) {
  310.         xswa.background_pixel = cdef.pixel;
  311.         mask |= CWBackPixel;
  312.         } else {
  313.         fprintf (stderr,"%s:  unable to allocate color '%s'.\n",
  314.              ProgramName, solidcolor);
  315.         action = doNone;
  316.         }
  317.         break;
  318.     case doDefault:
  319.     case doNone:
  320.         xswa.background_pixmap = None;
  321.         mask |= CWBackPixmap;
  322.         break;
  323.     case doRoot:
  324.         xswa.background_pixmap = ParentRelative;
  325.         mask |= CWBackPixmap;
  326.         break;
  327.     }
  328.     xswa.override_redirect = True;
  329.     xswa.backing_store = NotUseful;
  330.     xswa.save_under = False;
  331.     mask |= (CWOverrideRedirect | CWBackingStore | CWSaveUnder);
  332.     visual.visualid = CopyFromParent;
  333.     win = XCreateWindow(dpy, DefaultRootWindow(dpy), x, y, width, height,
  334.         0, DefaultDepth(dpy, screen), InputOutput, &visual, mask, &xswa);
  335.  
  336.     /*
  337.      * at some point, we really ought to go walk the tree and turn off 
  338.      * backing store;  or do a ClearArea generating exposures on all windows
  339.      */
  340.     XMapWindow (dpy, win);
  341.     /* the following will free the color that we might have allocateded */
  342.     XCloseDisplay (dpy);
  343.     exit (0);
  344. }
  345.  
  346.